home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-611.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  91 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(15631);
  11.  script_version ("$Revision: 1.2 $");
  12.  script_cve_id("CAN-2004-0835", "CAN-2004-0836", "CAN-2004-0837", "CAN-2004-0957");
  13.  
  14.  name["english"] = "RHSA-2004-611: mysql";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   An updated mysql-server package that fixes various security issues is now
  21.   available in the Red Hat Enterprise Linux 3 Extras channel of Red Hat
  22.   Network.
  23.  
  24.   MySQL is a multi-user, multi-threaded SQL database server.
  25.  
  26.   A number of security issues that affect the mysql-server package have been
  27.   reported. Although Red Hat Enterprise Linux 3 does not ship with the
  28.   mysql-server package, the affected package is available from the Red Hat
  29.   Network Extras channel.
  30.  
  31.   Oleksandr Byelkin discovered that "ALTER TABLE ... RENAME" checked
  32.   the CREATE/INSERT rights of the old table instead of the new one. The
  33.   Common Vulnerabilities and Exposures project (cve.mitre.org) has assigned
  34.   the name CAN-2004-0835 to this issue.
  35.  
  36.   Lukasz Wojtow discovered a buffer overrun in the mysql_real_connect
  37.   function. In order to exploit this issue an attacker would need to force
  38.   the use of a malicious DNS server (CAN-2004-0836).
  39.  
  40.   Dean Ellis discovered that multiple threads ALTERing the same (or
  41.   different) MERGE tables to change the UNION could cause the server to crash
  42.   or stall (CAN-2004-0837).
  43.  
  44.   Sergei Golubchik discovered that if a user is granted privileges to a
  45.   database with a name containing an underscore ("_"), the user also gains
  46.   the ability to grant privileges to other databases with similar names
  47.   (CAN-2004-0957).
  48.  
  49.   Users of mysql-server should upgrade to these erratum packages, which
  50.   correct these issues.
  51.  
  52.  
  53.  
  54.  
  55. Solution : http://rhn.redhat.com/errata/RHSA-2004-611.html
  56. Risk factor : High';
  57.  
  58.  script_description(english:desc["english"]);
  59.  
  60.  summary["english"] = "Check for the version of the mysql packages";
  61.  script_summary(english:summary["english"]);
  62.  
  63.  script_category(ACT_GATHER_INFO);
  64.  
  65.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  66.  family["english"] = "Red Hat Local Security Checks";
  67.  script_family(english:family["english"]);
  68.  
  69.  script_dependencies("ssh_get_info.nasl");
  70.  
  71.  script_require_keys("Host/RedHat/rpm-list");
  72.  exit(0);
  73. }
  74.  
  75. include("rpm.inc");
  76. if ( rpm_check( reference:"mysql-server-3.23.58-2.3", release:"RHEL3") )
  77. {
  78.  security_hole(0);
  79.  exit(0);
  80. }
  81.  
  82. if ( rpm_exists(rpm:"mysql-", release:"RHEL3") )
  83. {
  84.  set_kb_item(name:"CAN-2004-0835", value:TRUE);
  85.  set_kb_item(name:"CAN-2004-0836", value:TRUE);
  86.  set_kb_item(name:"CAN-2004-0837", value:TRUE);
  87.  set_kb_item(name:"CAN-2004-0957", value:TRUE);
  88. }
  89.  
  90. set_kb_item(name:"RHSA-2004-611", value:TRUE);
  91.